Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TrackをModelに切り出し、ソートを可能にする #128

Merged
merged 7 commits into from
Apr 8, 2024

Conversation

kinoppyd
Copy link
Member

@kinoppyd kinoppyd commented Apr 4, 2024

既存のScheduleモデルでは、track_nameを文字列として保持しているため、ソートのロジックが文字列ソートになる。
文字列では対応できないソートも存在するため、新たにTackモデルを作成し、positionを設定することでソートを可能にした。

@kinoppyd kinoppyd requested a review from exSOUL April 4, 2024 17:19
@kinoppyd kinoppyd changed the base branch from main to 2024 April 4, 2024 17:19
@kinoppyd kinoppyd marked this pull request as ready for review April 5, 2024 18:01
@kinoppyd kinoppyd requested a review from e-ikuta April 5, 2024 18:01
Copy link
Collaborator

@e-ikuta e-ikuta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ご対応ありがとうございます!
このPRでは、モデルに置き換えるまでで、実際にソートする機能は別PRで対応するものと理解しました!
念のため以下の動作確認をしました!

  • スケジュールを表示できること
  • 視聴予定にスケジュールを追加できること
  • 視聴予定からスケジュールを削除できること

@@ -5,7 +5,7 @@ class Table
attr_reader :track_list, :rows

def initialize(schedules)
@track_list = schedules.map(&:track_name).sort.uniq
@track_list = schedules.map(&:track).uniq.sort_by(&:position).map(&:name)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

このあたりN+1発生するのでは?と思って処理追ってみましたが、app/controllers/schedules_controller.rb@schedules を使っているので多分大丈夫だな、となりました

Copy link
Collaborator

@exSOUL exSOUL left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:lgtm_poyon:

@kinoppyd kinoppyd merged commit ba268ab into 2024 Apr 8, 2024
2 checks passed
@kinoppyd kinoppyd deleted the features/sort_track branch April 8, 2024 15:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants